home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Deutsche Edition 1
/
Deutsche Edition 1.iso
/
amok
/
amok_lha
/
amok33.lha
/
Wirth
/
Kurven
/
LineDrawing.def
< prev
next >
Wrap
Text File
|
1993-08-15
|
772b
|
25 lines
(* -------------------------------------------------------------------------
:Program. LineDrawing
:Author. Kai Bolay
:Address. Hoffmannstraße 168, 7250 Leonberg
:Phone. 07152/22135
:History. v1.00 Initial
:Copyright. PD
:Language. Modula-2
:Translator. M2Amiga 3.2d
:Imports. Turtle [Manfred Weigl], IntuiStruct [bne]
:Contents. Module supposed by Wirth
------------------------------------------------------------------------- *)
DEFINITION MODULE LineDrawing;
FROM Intuition IMPORT ScreenPtr, WindowPtr;
VAR width, height : INTEGER;
LineDrawScreen : ScreenPtr;
LineDrawWindow : WindowPtr;
PROCEDURE SetXY (x, y : INTEGER);
PROCEDURE Line (dir45, dist : INTEGER);
END LineDrawing.